home *** CD-ROM | disk | FTP | other *** search
- on openQuitBox
-
- -- (Used By MT, Cont)
-
- global gQuitWindow
-
- put the desktoprectlist into xxx
- put getat(xxx, 1) into yyy
- put getat(yyy, 3) into hhh
- put getat(yyy, 4) into vvv
-
- set vWidth = 400
- set vHeight = 200
- set vPosH = integer(hhh/2) - integer(400/2)
- set vPosV = integer(vvv/2) - integer(200/2)
-
- set gQuitWindow = window "Are You Sure?"
- set the fileName of gQuitWindow = (the pathName & "quitBox")
- set the windowType of gQuitWindow = 16
- set the rect of gQuitWindow = rect(vPosH, vPosV, vPosH + vWidth, vPosV + vHeight)
- open gQuitWindow
-
- end
-